home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Assistant
/
Business Assistant.iso
/
acctg
/
mx136
/
install.bat
< prev
next >
Wrap
DOS Batch File
|
1986-07-01
|
3KB
|
103 lines
echo off
cls
if %1x==x goto NODRIVE
echo All disk drive designations must end with colons. For instance, drive C is
echo designated as "C:", not "C". Make absolutely sure that you have designated
echo your hard disk correctly.
echo .
echo .
echo If your hard disk is NOT "%1", then press Control-C to abort; otherwise,
pause
echo .
echo .
if %1==b goto COLON
if %1==B goto COLON
if %1==c goto COLON
if %1==C goto COLON
if %1==d goto COLON
if %1==D goto COLON
if %1==e goto COLON
if %1==E goto COLON
if %1==f goto COLON
if %1==F goto COLON
cls
echo Creating MANAGEX directory and copying files...
%1
cd\
md MANAGEX
cd\MANAGEX
copy a:*.* /v
echo off
cls
echo The instructions will now be printed.
echo .
echo .
echo Please turn your printer OFF and then ON. Make sure that it is ready to print
echo and that you have loaded at least 50 sheets of paper. Then, align the print
echo head 1/2" below the top of the first sheet.
echo .
pause
cls
echo Printing documentation...
type REGISTER.FRM >prn
type README.DOC >prn
type MANAGEX.DOC >prn
cls
echo The documentation has been printed.
echo .
pause
echo off
cls
echo ManageX is now installed on your hard disk in the MANAGEX directory. To
echo access the program, do the following:
echo .
echo 1) enter "%1" at the prompt (this logs you onto drive %1);
echo 2) enter "CD\MANAGEX" at the prompt ("CD" means "Change Dirctory"); and
echo 3) enter "MX" at the prompt.
echo .
echo .
echo Also, remember to go through the instructions, step by step. Don't skip ANYTHING.
echo .
echo .
pause
cls
echo At your earliest convenience, copy the BACKUP and RESTORE utilities (from
echo the DOS diskette that came with your computer) to the MANAGEX directory, or
echo make sure that those two utilities are in your computer's "PATH". ManageX
echo needs them for creating and restoring archive files.
echo .
echo .
echo Now, let's get started.
echo .
echo .
echo You are about to enter the ManageX program. The only things you need do at
echo this time are to enter the correct date (when asked), go through the custom-
echo izing routine described in SECTION 1 of the documentation, and open files
echo for the current month. Feel free to play around, but don't use the program
echo "for real" until you have read the entire documentation.
echo .
echo .
echo Good luck.
echo .
echo .
pause
mx
:NODRIVE
cls
echo .
echo YOU MUST DESIGNATE THE DRIVE ONTO WHICH MANAGEX IS TO BE INSTALLED
echo .
echo examples: A:INSTALL C: will install ManageX on drive c:
echo A:INSTALL D: will install ManageX on drive d:
echo .
echo PLEASE TRY AGAIN
echo .
goto END
:COLON
cls
echo .
echo YOU MUST PLACE A COLON AFTER THE DRIVE LETTER DESIGNATION (%1:)
echo .
echo PLEASE TRY AGAIN
echo .
:END